home *** CD-ROM | disk | FTP | other *** search
/ MacPeople 2001 February 15 / MACPEOPLE-2001-02-15.ISO.7z / MACPEOPLE-2001-02-15.ISO / オンラインウエア / 厳選オンラインウエア100 / マルチメディア / iView Multimedia 3.8.4ト.sea / iView Multimedia 3.8.4ƒ / AppleScript Support / window scripts < prev    next >
Text File  |  1999-12-19  |  1KB  |  29 lines

  1. tell application "iView Multimedia 3.7.1"
  2.     
  3.     -- get the name of window after window 1
  4.     
  5.     set the selection of window 1 to 10
  6.     get the selection of window 1
  7.     -- get the importing of window 1
  8.     
  9.     -- get the properties of object 2 of window 1
  10.     -- select window 2 -- whose name contains "mov")
  11.     -- count (windows whose name contains "unt")
  12.     -- get (every object of window 1 whose name contains "tif")
  13.     -- duplicate window 1                        -- make an exact copy of the catalog>
  14.     -- get the name of every window              -- getting a list of opened catalogs
  15.     -- get properties of window 1                -- get a full list of window properties
  16.     -- copy the bounds of window 1 to myRect     -- changing the dimensions of the front window
  17.     -- get myRect
  18.     -- copy 600 to item 3 of myRect
  19.     -- copy 600 to item 4 of myRect
  20.     -- set the bounds of window 1 to myRect
  21.     -- set x to the properties of window 1
  22.     -- set the bounds of x to {26, 56, 580, 335}
  23.     -- set the properties of window 1 to x
  24.     
  25.     
  26.     -- get the properties of mark 1
  27.     -- get the name of mark 1
  28.     -- get the name of every mark
  29. end tell